Created: 2022-07-04
Tags: #literature
Abstract:
Uses LUA programming languange
Practice using nmap here. This website can be safely practiced
http://scanme.nmap.org
Many categories exists
safe:- Won't affect the targetintrusive:- Not safe: likely to affect the target vuln:- Scan for vulnerabilitiesWe use , to separate commands
--script=<script_name1>, <script_name2>--script=smb-enum-users, smb-enum-shares
It will have a website link that leads you to more info
<script-name>.<argument>/usr/share/nmap/scripts^ Directory above contains script.db
---> Use grep on script.db
grep "ftp" /usr/share/nmap/scripts/script.db
grep "safe" /usr/share/nmap/scripts/script.db
---> Or search folder with ls syntax
ls -l /usr/share/nmap/scripts/*script_name*